home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Risc World 1
/
Risc World 1.iso
/
software
/
issue2
/
begprog
/
Prog_2_5
(
.txt
)
< prev
Wrap
RISC OS BBC BASIC V Source
|
2000-04-10
|
600b
|
22 lines
Program to add or subtract VAT from a price
$ + " at line " +
"Do you want to -"
" 1. Add VAT to the net price"
" 2. Calculate net price from VAT inclusive price"
" 3. Exit the program"
"Please choose " choice%
choice%
1 :
"Enter price " price
% result = price * 1.175
,
"Price with VAT is " result
2 :
"Enter price " price
% result = price / 1.175
/
"Price without VAT is " result
3 :
"You must enter 1, 2 or 3"
choice% = 3